home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / drnu451.arc / NUBEWIND < prev    next >
Text File  |  1990-10-19  |  3KB  |  69 lines

  1.                                  BE WINDOW 
  2.  
  3.  
  4. Description:   Displays a double-lined window. The window overlays any data
  5.                inside it. 
  6.  
  7. Syntax:        Version 4.5:   BE WINDOW (top-row)[,]
  8.                               (left-col)[,](bottom-row)[,] (right-col) 
  9.                               [[BLINKING] [BRIGHT | BOLD] [(frame-color)] 
  10.                               [[ON] (fill-color)]] [SHADOW] [ZOOM] 
  11.  
  12.                                 Parameters: 
  13.  
  14. (top-row)      The row on the screen where you want to display the top of the
  15.                window. The number of the first row is 0. 
  16.  
  17. (left-col)     The column on the screen where you want to display the left
  18.                side of the window. The number of the first column is 0. 
  19.  
  20. (bottom-row)   The row on the screen where you want to display the bottom of
  21.                the window. The last row on most standard (25-line) screens is
  22.                24, but some adapters can display more rows. The (bottom-row)
  23.                value must be greater than the (top-row) value. 
  24.  
  25.  
  26.  
  27.  
  28. (right-col)    The column on the screen where you want to display the right
  29.                side of the window. The last column number is 79. The
  30.                (right-col) value must be greater than the (left-col) value. 
  31.  
  32. BLINKING       Makes the frame repeatedly blink on  and off. 
  33.  
  34. BRIGHT | BOLD  Displays the window-frame lines in high intensity. 
  35.  
  36. (frame-color)  The color of the window-frame lines. The default is the
  37.                current foreground color setting for the screen. After BE
  38.                WINDOW executes, any characters you display in the window
  39.                using other BE commands, such as BE ASK or BE ROWCOL, appear
  40.                in (frame-color). If you use a DOS command such as ECHO or
  41.                TYPE to display characters, the characters appear in the
  42.                original screen foreground and background colors. See
  43.                <NUBESA>. 
  44.  
  45. (fill-color)   The background color of the window. If you do not provide
  46.                (frame-color), you must include the ON keyword. The default
  47.                color is black. After BE WINDOW executes, any characters you
  48.                display in the window using other BE commands, such as BE ASK
  49.                or BE ROWCOL, appear on a background of (fill-color). If you
  50.                use a DOS command such as ECHO or TYPE to display characters,
  51.                the characters appear in the original screen foreground and
  52.                background colors. 
  53.  
  54. SHADOW    Creates a gray shadow on the right and bottom sides of the window.
  55.           Any characters that the shadow covers are still visible. The shadow
  56.           might not be visible on some LCD screens. 
  57.  
  58. ZOOM      Makes the window appear to blossom out from the center of the
  59.           window. 
  60.  
  61. EXAMPLE:  Display a window that is large enough to contain a 30 column by 9
  62.           row area of data in the center of a standard (25 line by 80
  63.           character) screen and that appears as a black frame on a green
  64.           background.
  65.  
  66.           Enter:    BE WINDOW 7 24 17 55 BLACK ON GREEN 
  67.  
  68. See:      <NUBEBOX>, <NUBESA>, <NUNCC>, <NUCOLOR>. 
  69.